home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9207.ARJ / 1007046A < prev    next >
Text File  |  1992-06-03  |  410b  |  18 lines

  1. /* Listing 3 */
  2. /* Data Definition Language for database sql_proc */
  3. database sql_proc
  4.    {
  5.  
  6.    data file "sql_proc.rec" contains sql_proc;
  7.    key file "sql_proc.key" contains sql_name;
  8.  
  9.    record sql_proc
  10.       {
  11.       unique key char sql_name[16];
  12.       char sql_description[64];
  13.       char sql_command[424];
  14.       }   /* record sql_proc */
  15.  
  16.    }   /* database sql_proc */
  17. /* End of File */
  18.